home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
UTILITY
/
OBSKIT.ARJ
/
TRYIT.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-01-11
|
4KB
|
100 lines
echo off
rem TRYIT.BAT
rem
rem Temporary install program for Obs Toolkit Version 1.5
rem
rem ObsRes will not work with NDOS or 4DOS!
rem Use the xDOS.CFG file instead.
rem
rem Obs Toolkit is Shareware!
rem
rem Contrails, Inc.
rem P.O. Box 2759
rem Lompoc, CA 93438-2759
rem (805) 733-2808
rem
echo ╓───────────────────────────────────────────────────────────────╖
rem ║ ║
echo ║ ╔══════════════════════╗ ║
echo ║ ║Welcome to Obs Toolkit╟┐ ║
echo ║ ╚╤═════════════════════╝│ ║
echo ║ │ Version 1.5 │ ║
echo ║ └──────────────────────┘ ║
echo ║ ║
echo ║ Obs Toolkit can significantly enhance your ║
echo ║ o command line o toolchest o batch files ║
echo ║ ║
echo ╠═══════════════════════════════════════════════════════════════╣
echo ║ This is only a temporary installation ║
echo ╠═══════════════════════════════════════════════════════════════╣
echo ║ ║
echo ║ Try a few DOS commands now. If you want Obs Toolkit each ║
echo ║ time you boot your computer then read the installation ║
echo ║ section of the manual. This installs only a taste of the ║
echo ║ Toolkits potential ║
echo ║ ║
rem ╠═══════════════════════════════════════════════════════════════╣
rem ║ Thank you for considering Obs Toolkit ║
rem ║ ║
rem ║ ╔═════════════════╗ ║
rem ║ ║Support Shareware╟┐ ║
rem ║ $39.00 ╚╤════════════════╝│ $39.00 ║
rem ║ └─────────────────┘ ║
rem ║ ║
rem ║ ┌─────────┐ ║
rem ║ ┌─────┴───┐ │ (R) ║
rem ║ ──│ │o │────────────────── ║
rem ║ │ ┌─────┴╨──┐ │ Association of ║
rem ║ │ │ │─┘ Shareware ║
rem ║ └───│ o │ Professionals ║
rem ║ ──────│ ║ │──────────────────── ║
rem ║ └────╨────┘ MEMBER ║
rem ║ ║
echo ╙───────────────────────────────────────────────────────────────╜
echo
if not exist obsres.com goto wrong_dir
for %%f in (alias.exe aliases.dos fd.exe) do if not exist %%f goto missing
for %%f in (ocd.exe lf.exe mf.exe ee.exe) do if not exist %%f goto missing
for %%f in (locate.exe ds.exe) do if not exist %%f goto missing
echo To abort this installation press "Ctrl-C" otherwise
pause
obsres
if errorlevel 1 goto terminate
echo
alias /clear /file aliases.dos
if errorlevel 6 goto terminated
if errorlevel 1 goto partial
alias /make ob
if errorlevel 1 goto partial
goto success
:wrong_dir
echo *** ERROR ***
echo You must be located in the Toolkit directory
goto terminate
:missing
echo *** ERROR ***
echo Files are missing
goto terminate
:partial
alias /off
echo *** ERROR ***
echo Cannot install aliases
goto terminate
:terminate
echo Installation was terminated.
goto done
:success
echo Installed ObsRes with a 2k alias dictionary, and 4 SmartPaths
echo Aliases are loaded
echo
echo Temporary installation is complete!
goto done
:done
echo